home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / ev_201.zip / STDTYPE.H < prev    next >
Text File  |  1993-07-03  |  745b  |  26 lines

  1. #if !defined (STDTYPE)            /* Prevents multiple declarations errors */
  2. #define STDTYPE
  3.  
  4.  
  5. /*
  6.    Version       : 2.0
  7.    Revision date : July 3rd, 1993
  8.    Author(s)     : Rémy Gendron
  9.  
  10.    Description   : Standard type definitions.
  11. */
  12.  
  13.  
  14. /* Typedefs -------------------------------------------------------------- */
  15.  
  16. typedef unsigned char        bool ;                        /* Boolean type */
  17.  
  18. typedef unsigned char        byte ;                               /* 0-255 */
  19. typedef unsigned int         word ;                             /* 0-65535 */
  20. typedef unsigned long int    dword ;                       /* 0-4294967295 */
  21.  
  22.  
  23. /* End Source File ------------------------------------------------------- */
  24.  
  25. #endif
  26.